home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000209_news@columbia.edu_Thu Jan 19 14:48:28 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07820
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 19 Jan 1995 09:48:50 -0500
  3. Received: by apakabar.cc.columbia.edu id AA15725
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 19 Jan 1995 09:48:46 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: tcpip machine name
  9. Date: 19 Jan 1995 14:48:28 GMT
  10. Organization: Columbia University
  11. Lines: 43
  12. Message-Id: <3flu3s$fa6@apakabar.cc.columbia.edu>
  13. References: <3fl9pa$quj@cello.gina.calstate.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3fl9pa$quj@cello.gina.calstate.edu>,
  18. Larry Powell <jpowell@cello.gina.calstate.edu> wrote:
  19. >Is there a way in MSkermit to set a machine's full name? I know there
  20. >is the command to SET TCP/IP DOMAIN <domain-name> but I thought this
  21. >was not for the full name.  Essentially is it possible to set the full
  22. >name to match the <Ip-address> set by SET TCP/IP ADDRESS <Ip-address>?
  23. >
  24. Yes.  You can use SET TCP/IP DOMAIN to set your PC's full name.
  25. But the value of this setting is known only to Kermit itself, and it
  26. is used for only one purpose: to turn "nicknames" into fully qualified
  27. domain names (FQDN).  For example, if your network is called foo.bar.baz
  28. and your PC is called oofa, then its FQDN is oofa.foo.bar.baz.
  29.  
  30. If you say "set port tcp blah", Kermit sends a query to your name server
  31. for "blah".  If it doesn't get a satisfactory response, then it uses
  32. your SET TCP DOMAIN value to try to make an FQDN.  Normally you would
  33. have your TCP DOMAIN set to your network name rather than your PC's FQDN,
  34. so Kermit would try:
  35.  
  36.   blah                  (no match)
  37.   blah.foo.bar.baz      (works)
  38.  
  39. If you set your TCP DOMAIN to your PC's own FQDN, then Kermit tries:
  40.  
  41.   blah                  (no match)
  42.   blah.oofa.foo.bar.baz (no match)
  43.   blah.foo.bar.baz      (works)
  44.  
  45. Both ways work, but the second way takes a bit longer.
  46.  
  47. The best way to set your TCP/IP parameters is from an organizational
  48. BOOTP server.  Then the only command that you (or anybody else) needs
  49. for Kermit TCP/IP setup is SET TCP ADDRESS BOOTP.  The advantages of
  50. this approach are so overwhelming that every site should read about
  51. them and set up a centralized bootp database.  Maybe your site has one
  52. already and you only need to be registered in it.
  53.  
  54. MS-DOS Kermit 3.13 and later support BOOTP at RFC 1395, which allows
  55. the domain name to be downloaded to the PC from the BOOTP database.
  56. The original BOOTP specification (and BOOTP servers and databases based
  57. on it) did not include the domain name.
  58.  
  59. - Frank